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": {"t